home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kellogg's Amérique
/
Kellogg's Amérique
/
main.swf
/
scripts
/
fl
/
data
/
SimpleCollectionItem.as
< prev
Wrap
Text File
|
2020-08-04
|
400b
|
22 lines
package fl.data
{
public dynamic class SimpleCollectionItem
{
public var label:String;
public var data:String;
public function SimpleCollectionItem()
{
super();
}
public function toString() : String
{
return "[SimpleCollectionItem: " + label + "," + data + "]";
}
}
}